Test with all features
authorFelix Krull <f_krull@gmx.de>
Sat, 20 Oct 2018 11:04:01 +0000 (13:04 +0200)
committerColin Walters <walters@verbum.org>
Fri, 6 May 2022 16:53:53 +0000 (12:53 -0400)
rust-bindings/rust/.gitlab-ci.yml

index ccadfe42e121012dfc2499b38394847dcefae891..546caa93b6d3d2b603ce914d53d83b5117e2b76d 100644 (file)
@@ -16,13 +16,13 @@ stages:
 libostree-sys:
   stage: build
   script:
-  - cargo test --verbose --manifest-path sys/Cargo.toml
+  - cargo test --verbose --manifest-path sys/Cargo.toml --all-features
 
 libostree-sys_nightly:
   stage: build
   image: rustlang/rust:nightly
   script:
-  - cargo test --verbose --manifest-path sys/Cargo.toml
+  - cargo test --verbose --manifest-path sys/Cargo.toml --all-features
   allow_failure: true
 
 publish_libostree-sys:
@@ -35,13 +35,13 @@ publish_libostree-sys:
 libostree:
   stage: build
   script:
-  - cargo test --verbose
+  - cargo test --verbose  --all-features
 
 libostree_nightly:
   stage: build
   image: rustlang/rust:nightly
   script:
-  - cargo test --verbose
+  - cargo test --verbose  --all-features
   allow_failure: true
 
 publish_libostree: